home *** CD-ROM | disk | FTP | other *** search
/ Dream Season 1996 - Flor…a's National Championship / Florida's National Championship on CD-ROM - Dream Season 1996.iso / mac / Dream Season '96 / Dream Season '96.DXR / 00182.ls < prev    next >
Encoding:
Text File  |  1997-03-19  |  1.8 KB  |  65 lines

  1. on mouseDown
  2.   global gVIDEOSPRITE
  3.   set spnum to gVIDEOSPRITE + 1
  4.   set e to the stopTime of sprite spnum
  5.   set OK to 1
  6.   repeat while OK
  7.     set x to the mouseH - the left of sprite gVIDEOSPRITE
  8.     set y to the mouseV - the top of sprite gVIDEOSPRITE
  9.     if (y < 220) or (y > 245) then
  10.       exit
  11.     end if
  12.     set n to the movieTime of sprite spnum
  13.     if x > 268 then
  14.       exit
  15.     else
  16.       if x > 232 then
  17.         set the movieRate of sprite spnum to 0
  18.         set the movieTime of sprite spnum to n + 20
  19.       else
  20.         if x > 201 then
  21.           set the movieRate of sprite spnum to 0
  22.           set the movieTime of sprite spnum to n - 20
  23.         else
  24.           if x > 171 then
  25.             set the movieRate of sprite spnum to 0
  26.           else
  27.             if x > 141 then
  28.               set n to n + 100
  29.               if n > e then
  30.                 set n to e - 10
  31.               end if
  32.               set the movieTime of sprite spnum to n
  33.             else
  34.               if x > 111 then
  35.                 set the movieRate of sprite spnum to 1
  36.               else
  37.                 if x > 81 then
  38.                   set n to n - 100
  39.                   if n < 1 then
  40.                     set n to 1
  41.                   end if
  42.                   set the movieTime of sprite spnum to n
  43.                 else
  44.                   if x > 52 then
  45.                     set the movieTime of sprite spnum to 0
  46.                     set the movieRate of sprite spnum to 1
  47.                   else
  48.                     if x > 18 then
  49.                       LoadMedia(0)
  50.                       dontPassEvent()
  51.                     end if
  52.                   end if
  53.                 end if
  54.               end if
  55.             end if
  56.           end if
  57.         end if
  58.       end if
  59.     end if
  60.     updateStage()
  61.     set OK to the mouseDown
  62.     set OK to the mouseDown
  63.   end repeat
  64. end
  65.